home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / textool / textool.fix < prev    next >
Text File  |  1990-10-01  |  2KB  |  93 lines

  1. *** sunstuff.c    Tue Mar 29 08:06:23 1988
  2. --- sunstuff.c.old    Tue Mar 29 08:02:13 1988
  3. ***************
  4. *** 16,23 ****
  5.    * -> V2.2, 27 Nov 87 -- fixed bug where .dvi file was opened twice,
  6.    *                        once from FrameDoneProc() and once by the WIN_REPAINT
  7.    *                        case in CanvasEventProc(). This ran us out of fds.
  8. -  * -> V2.3, 29 Mar 88 -- fixed sloppy code in skip_specials() in pkstuff.c
  9. -  *                        that caused specials to be missed and treated as chars.
  10.    */
  11.   
  12.   /* include the various global #defines */
  13. --- 16,21 ----
  14. *** pkstuff.c    Tue Mar 29 08:05:07 1988
  15. --- pkstuff.c.old    Tue Mar 29 08:02:03 1988
  16. ***************
  17. *** 5,15 ****
  18.    * See the pktopx documentation for details.
  19.    */
  20.   
  21. - /*
  22. -  * For V2.3, 29 Mar 88
  23. -  * Fixed stupid errors in skip_specials() that caused specials to be missed
  24. -  */
  25.   #include "defs.h"
  26.   #include <stdio.h>
  27.   #include <sys/file.h>                /* for access() stuff */
  28. --- 5,10 ----
  29. ***************
  30. *** 190,200 ****
  31.                   case PK_XXX4:
  32.                       i = get_pk_byte();
  33.                   case PK_XXX3:
  34. !                     i = (i<<8) + get_pk_byte();
  35.                   case PK_XXX2:
  36. !                     i = (i<<8) + get_pk_byte();
  37.                   case PK_XXX1:
  38. !                     i = (i<<8) + get_pk_byte();
  39.                       while (i--)
  40.                           (void)get_pk_byte();
  41.                       break;
  42. --- 185,195 ----
  43.                   case PK_XXX4:
  44.                       i = get_pk_byte();
  45.                   case PK_XXX3:
  46. !                     i = i<<8 + get_pk_byte();
  47.                   case PK_XXX2:
  48. !                     i = i<<8 + get_pk_byte();
  49.                   case PK_XXX1:
  50. !                     i = i<<8 + get_pk_byte();
  51.                       while (i--)
  52.                           (void)get_pk_byte();
  53.                       break;
  54. ***************
  55. *** 215,221 ****
  56.                           flag_byte);
  57.                       return;
  58.               }
  59. !     } while (flag_byte >= PK_XXX1);
  60.   }
  61.   
  62.   
  63. --- 210,216 ----
  64.                           flag_byte);
  65.                       return;
  66.               }
  67. !     } while (flag_byte > PK_XXX1);
  68.   }
  69.   
  70.   
  71. *** textool.l    Tue Mar 29 09:24:36 1988
  72. --- textool.l.old    Tue Mar 29 09:24:09 1988
  73. ***************
  74. *** 187,193 ****
  75.   The following things are taken from the environment:
  76.   .TP
  77.   .B PKPATH
  78. ! A colon separated list of directories to search for the font PK files
  79.   in place of the default described below.
  80.   .TP
  81.   .B HOME
  82. --- 187,193 ----
  83.   The following things are taken from the environment:
  84.   .TP
  85.   .B PKPATH
  86. ! A comma separated list of directories to search for the font PK files
  87.   in place of the default described below.
  88.   .TP
  89.   .B HOME
  90.  
  91. End of diffs.
  92.